Posts

Adding Firebase to Android Application

Introduction to Mojette transform

Reinforcement Learning
Reinforcement learning is a machine learning approach where an agent (software entity) is trained to interpret the environment by performing actions and monitoring the results. For every good action, the agent gets positive feedback and for every bad action the agent gets negative feedback. It's in
Creating linear kernel SVM in Python
Prerequisite: SVM Let's create a Linear Kernel SVM using the sklearn library of Python and the Iris Dataset that can be found in the dataset library of Python. Linear Kernel is used when the data is Linearly separable, that is, it can be separated using a single Line. It is one of the most common kernels to be used. It is mostly used when there are a Large number of Features in a particular Data Set. One of the examples where there are a lot of features, is Text Classification, as each alphabe...
Creating a Simple Machine Learning Model
To create a simple Machine Learning model, we???ll start with one of the most fundamental algorithms i.e Linear Regression. It???s used to find the relationship between a dependent variable and one or more independent variables by fitting a straight line through the data points.
Sum of the sequence 2, 22, 222, .........
Given an integer n. The task is to find the sum of the following sequence: 2, 22, 222, ......... to n terms.,%?
Set up Opencv with anaconda environment
If you love working on image processing and video analysis using python then you have come to the right place. Python is one of the major languages that can be used to process images or videos.,%?